home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19981211-19990422 / 000437_news@watsun.cc.columbia.edu _Tue Apr 6 22:54:57 1999.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Return-Path: <news@watsun.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.59.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id WAA17366
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Tue, 6 Apr 1999 22:54:56 -0400 (EDT)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id WAA26639
  7.     for kermit.misc@watsun.cc.columbia.edu; Tue, 6 Apr 1999 22:33:41 -0400 (EDT)
  8. X-Authentication-Warning: newsmaster.cc.columbia.edu: news set sender to <news> using -f
  9. From: jrd@cc.usu.edu (Joe Doupnik)
  10. Subject: Re: MSK in W95
  11. Message-ID: <h2xt9Dez2W6W@cc.usu.edu>
  12. Date: 6 Apr 99 20:29:49 MDT
  13. Organization: Utah State University
  14. To: kermit.misc@watsun.cc.columbia.edu
  15.  
  16. In article <370A6667.1501DC84@boeing.com>, David Hauck <david.p.hauck@boeing.com> writes:
  17. > I am having some difficulty using MSK in the Win95 and WinNTW
  18. > environments.  We are using MSK version 3.10 to communicate with
  19. > computer controlled milling machines.  The machine controls are running
  20. > kermit server as a background process.  We use a W95 application to pull
  21. > a file out of a DataBase to a temporary file on the workstation, then
  22. > initiate Kermit from a batch file using the temporary file name. 
  23. > Sometimes the transfer works ok, other times it just seems to hang with
  24. > the first packet, and other times there are many retries before the
  25. > transfer completes.  When Kermit is called from the W95 application
  26. > several messages appear in the DOS window "?This port will be operated
  27. > through the Bios as BIOS1" and "Unimplemented speed" when 19200 is
  28. > selected as the baud rate.  When I change the port settings from BIOS1
  29. > to COM1 the file transfers every time. Is there a way to override the
  30. > BIOS1 setting from a batch file? Would K95 be a better choice to do file
  31. > transfers in a W95 environment?
  32. ----------
  33.     What is happening is MSK's detection of serial port hardware is
  34. failing because either Windows proclaims ownership or Windows introduces
  35. long enough time delays between Kermit machine instructions that things
  36. seem to fail. When the test fails Kermit retreats to using the Bios, and
  37. that is good only for 300 bps modems and the like.
  38.     One suggestion is to ensure Windows has no knowledge of the serial
  39. port. That includes not using any "Winmodem" software. Another is to
  40. SET PORT COM1, and then do it again, more or less as you did by hand.
  41. The first time to probe, and the second to probe again if Windows has
  42. backed away. 
  43.     Kermit95 is a Windows only program, and it communicates to the
  44. serial port though the drivers of Windows. Thus it is not in competition
  45. with Windows for access.
  46.         Joe D.